machine learning and tensorflow
Advances in machine learning and TensorFlow (Google I/O '18)
Artificial intelligence affects more than just computer science. Join this session to hear a collection of short presentations from top machine learning researchers: the TensorFlow engineers working on robotics, and the Magenta team exploring the border between machine learning and art. See all the sessions from Google I/O '18 here https://goo.gl/q1Tr8x
How I Built a Reverse Image Search with Machine Learning and TensorFlow: Part 3 Codementor
I've been making some TensorFlow examples for my website, fomoro.com, While it's fresh in my head, I wanted to write up an end-to-end description of what it's like to build a machine learning app, and more specifically, how to make your own reverse image search. For this demo, the work is ⅓ data munging/setup, ⅓ model development and ⅓ app development. At a high-level, I use TensorFlow to create an autoencoder, train it on a bunch of images, use the trained model to find related images, and display them with a Flask app. In the last post, I talked model development and training.
How I Built a Reverse Image Search with Machine Learning and TensorFlow: Part 1 Codementor
I've been making some TensorFlow demos for my website, fomoro.com, While it's fresh in my head, I wanted to write up an end-to-end description of what it's like to build a machine learning app, and more specifically, how to make your own reverse image search. For this demo, the work is ⅓ data munging/setup, ⅓ model development and ⅓ app development. At a high-level, I use TensorFlow to create an autoencoder, train it on a bunch of images, use the trained model to find related images, and display them with a Flask app. In this first post, I'm going to go over my environment and project setup and do a little bit of scaffolding.